:root {
  --global-background: #F8F8F8;
  --title-color: darkorange;
  --window-border-color: #e2e2e2;
  --window-background: white;
  --window-text-main: black;
  --window-text: #737373;
  --option-text-color: #737373;
  --option-selected-text-color: darkorange;
  --hover-background: #CEABD1;
  --hover-color: #314555;
}

h2.page-title {
  font-family: 'Montserrat', Arial, san-serif;
  font-weight: normal;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--title-color);
  text-align: center;
  padding: 15px;
}
h3.page-title {
  font-family: 'Montserrat', Arial, san-serif;
  font-weight: normal;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--title-color);
  text-align: center;
  padding: 16px;
}


.color-0 {
  color: red; 
}
.color-0.selected {
  background-color: red  !important;
  color: white  !important;
}
.color-1 {
  color: blue;
}
.color-1.selected {
  background-color: blue  !important;
  color: white  !important;
}
.color-2 {
  color: green;
}
.color-2.selected {
  background-color: green  !important;
  color: white  !important;
}
.color-3 {
  color: greenyellow;
}
.color-3.selected {
  background-color: greenyellow  !important;
  color: white  !important;
}
.color-4 {
  color: orange;
}
.color-4.selected {
  background-color: orange  !important;
  color: white  !important;
}
.color-5 {
  color: hotpink;
}
.color-5.selected {
  background-color: hotpink !important;
  color: white !important;
}
.color-6 {
  color: yellowgreen;
}
.color-6.selected {
  background-color: yellowgreen !important;
  color: white !important;
}
.color-7 {
  color: magenta;
}
.color-7.selected {
  background-color: magenta  !important;
  color: white  !important;
}
.color-8 {
  color: orangered;
}
.color-8.selected {
  background-color: orangered  !important;
  color: white  !important;
}
.color-9 {
  color: indianred;
}
.color-9.selected {
  background-color: indianred  !important;
  color: white !important;
}


/*______   BUTTONS   ______*/

.ch-button-div {
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.ch-button2 {
    clear: both;
    display: inline-block;
    margin: 0px;
    padding: 10px 20px;
    font: 14px 'Open Sans', 'Segoe UI', Helvetica, Verdana, san-serif;
    width: auto;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border: none;
        border-top-color: currentcolor;
        border-top-style: none;
        border-top-width: medium;
        border-right-color: currentcolor;
        border-right-style: none;
        border-right-width: medium;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: medium;
        border-left-color: currentcolor;
        border-left-style: none;
        border-left-width: medium;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 120px;
}
.ch-button2.ch-button-inactive:hover, .ch-button2.ch-button-active:hover {
    background-color: #37750E;
    color: white;
    border-color: #37750E;
}

.ch-button2.ch-button-border, .ch-button2.ch-button-active.ch-button-border, .ch-button2.ch-button-inactive.ch-button-border {
    border-width: 2px;
    border-style: solid;
    border-radius: 20px;
}

.ch-button2.ch-button-active {
    color: rgb(67, 67, 67);
    background-color: rgb(255, 255, 255);
}

.ch-button2.ch-button-small, 
a.ch-button2.ch-button-small 
{
    padding: 5px 10px;
}
.ch-button2.ch-button-big,
a.ch-button2.ch-button-big 
{
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 30px;
}
.ch-button2.ch-button-active,
.ch-button-send {
    color: rgb(67, 67, 67);
    background-color: rgb(255, 255, 255);
}

.ch-button2.ch-button-active-opposite {
    background-color: #37750E;
    color: white;
    border-color: #37750E;
}
.ch-button2.ch-button-active-opposite:hover {
    color: rgb(67, 67, 67);
    background-color: #c4e8b0;
}

.ch-button2.ch-button-active.ch-button-mini {
    border-color: #7f7f7f;
    border-width: 1px;
    line-height: 9px;
    color: #7f7f7f;
}

.ch-button2.ch-button-active.ch-button-mini:hover {
    background-color: #37750E;
    color: white;
    border-color: #37750E;
}

.ch-button2.ch-button-active.ch-button-micro:hover {
    color: green;
    background-color: transparent;
  	border:none;
}
.ch-button2.ch-button-active.ch-button-micro {
    font-size: 14px;
  	border: none;
  	color: #7f7f7f;
  	padding: 10px;
}

/* CHECKBOX */

.ch-control {
  font-family: arial;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 16px;
}
.ch-control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.ch-control_indicator {
  position: absolute;
  top: 1px;
  left: 0;
  height: 25px;
  width: 25px;
  background: #e6e6e6;
  border: 0px solid #000000;
  border-radius: 0px;
}
.ch-control:hover input ~ .ch-control_indicator,
.ch-control input:focus ~ .ch-control_indicator {
  background: #cccccc;
}

.ch-control input:checked ~ .ch-control_indicator {
  background: #A1A474;
}
.ch-control:hover input:not([disabled]):checked ~ .ch-control_indicator,
.ch-control input:checked:focus ~ .ch-control_indicator {
  background: #0e6647d;
}
.ch-control input:disabled ~ .ch-control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.ch-control_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.ch-control input:checked ~ .ch-control_indicator:after {
  display: block;
}
.ch-control-checkbox .ch-control_indicator:after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.ch-control-checkbox input:disabled ~ .ch-control_indicator:after {
  border-color: #7b7b7b;
}



/****************************************

	CATEGORIAS Y BUSQUEDA


*/


/* CATEGORIAS */
.item-categories {
  margin-bottom: 0px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 19px;
}
/*
.item-categories p {
  border: none;
  padding: 0px;
  color:red;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 0px;

  padding-bottom: 6px;
  padding-top: 6px;

} */
.item-categories p {
  border: none;
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: red;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 6px;
  padding-top: 6px;
  text-align: left
}
.item-categories .category {
    margin-right: 5px;
  display: inline;
}
.item-categories span.cat-label-link
{
  cursor: pointer;
  text-decoration: none;
  font: 12px 'Segoe UI', Helvetica, Verdana, san-serif;
  padding-bottom: 3px;
  padding-right: 3px;
	padding-top: 5px;
	padding-left: 5px;
}
.item-categories span.cat-label-link.big {
    font-size: 14px;
    padding-bottom: 3px;
    padding-right: 5px;
    padding-top: 5px;
    padding-left: 5px;
    color: gray;
}

.item-categories span.cat-label-link.cloud {
    color: gray;
}

.item-categories span.cat-label-link:hover
{
  text-decoration: underline;
  color: green;
}
.cloud-cat-group > h2 {
    font: 18px 'Segoe UI', Helvetica, Verdana, san-serif;
    text-transform: none;
    margin-top: 30px;
    margin-bottom: 10px;
}

.cloud-cat-group > h3 {
    font-size: 15px;
    color: #7F7F7F;
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 19px;
    font-weight: normal;
}

.catsecondary {
  color: black;
}
.widget-content h4 {
  font: 20px 'Raleway', Arial, san-serif;
  color: #3D3D3D;
}
.catcolor-0 {
  color: red; 
}
.catcolor-0.selected {
  background-color: red  !important;
  color: white  !important;
}
.catcolor-1 {
  color: blue;
}
.catcolor-1.selected {
  background-color: blue  !important;
  color: white  !important;
}
.catcolor-2 {
  color: green;
}
.catcolor-2.selected {
  background-color: green  !important;
  color: white  !important;
}
.catcolor-3 {
  color: greenyellow;
}
.catcolor-3.selected {
  background-color: greenyellow  !important;
  color: white  !important;
}
.catcolor-4 {
  color: orange;
}
.catcolor-4.selected {
  background-color: orange  !important;
  color: white  !important;
}
.catcolor-5 {
  color: hotpink;
}
.catcolor-5.selected {
  background-color: hotpink !important;
  color: white !important;
}
.catcolor-6 {
  color: yellowgreen;
}
.catcolor-6.selected {
  background-color: yellowgreen !important;
  color: white !important;
}
.catcolor-7 {
  color: magenta;
}
.catcolor-7.selected {
  background-color: magenta  !important;
  color: white  !important;
}
.catcolor-8 {
  color: orangered;
}
.catcolor-8.selected {
  background-color: orangered  !important;
  color: white  !important;
}
.catcolor-9 {
  color: indianred;
}
.catcolor-9.selected {
  background-color: indianred  !important;
  color: white !important;
}

/*______   BUSCAR   ______*/

.search-text .search-box {
    font-family: 'Raleway', Arial, san-serif;
    font-size: 16px;
    background: white;
    width: 100%;
    line-height: 1.5;
    padding: 10px;
    color: #37750E;
    border: 1px solid #F0F0F0;
}
.search-text .search-box::-webkit-input-placeholder
{ 
  color: #A1A46E ;
}
.search-text .search-box::placeholder
{ 
  color: #A1A46E ;
}
.search-text .search-box:-ms-input-placeholder
{ 
  color: #A1A46E ;
}
